home *** CD-ROM | disk | FTP | other *** search
/ Utilities Professional 1-1500 / Utilities Professional 1-1500 (1994)(WPD)[!].iso / 12511500 / var1432.dms / var1432.adf / NDUK-V40.lha / V40 / include / prefs / prefhdr.h < prev    next >
C/C++ Source or Header  |  1993-10-15  |  897b  |  44 lines

  1. #ifndef PREFS_PREFHDR_H
  2. #define PREFS_PREFHDR_H
  3. /*
  4. **    $VER: prefhdr.h 38.1 (19.6.91)
  5. **    Includes Release 40.15
  6. **
  7. **    File format for preferences header
  8. **
  9. **    (C) Copyright 1991-1993 Commodore-Amiga, Inc.
  10. **    All Rights Reserved
  11. */
  12.  
  13. /*****************************************************************************/
  14.  
  15.  
  16. #ifndef EXEC_TYPES_H
  17. #include <exec/types.h>
  18. #endif
  19.  
  20. #ifndef LIBRARIES_IFFPARSE_H
  21. #include <libraries/iffparse.h>
  22. #endif
  23.  
  24.  
  25. /*****************************************************************************/
  26.  
  27.  
  28. #define ID_PREF     MAKE_ID('P','R','E','F')
  29. #define ID_PRHD     MAKE_ID('P','R','H','D')
  30.  
  31.  
  32. struct PrefHeader
  33. {
  34.     UBYTE ph_Version;    /* version of following data */
  35.     UBYTE ph_Type;    /* type of following data    */
  36.     ULONG ph_Flags;    /* always set to 0 for now   */
  37. };
  38.  
  39.  
  40. /*****************************************************************************/
  41.  
  42.  
  43. #endif /* PREFS_PREFHDR_H */
  44.